home *** CD-ROM | disk | FTP | other *** search
/ The Arsenal Files 8 / The Arsenal Files Collection #8 (Arsenal Computer) (1996).ISO / sci_calc / ucalc32.zip / CONVERT.DEF < prev    next >
Text File  |  1996-11-21  |  602b  |  27 lines

  1. ; Conversion definition file
  2. ; As you use this shareware program, please remember the author behind it.
  3. ; Your registration will be highly appreciated.
  4.  
  5. inch_mm(x) = x*25.4
  6. inch_cm(x) = x*2.54
  7. feet_m(x)  = x*.3048
  8. yard_m(x)  = x*.9144
  9. mile_km(x) = x*1.6093
  10.  
  11. mm_inch(x) = x/25.4
  12. cm_inch(x) = x/2.54
  13. m_feet(x)  = x/.3048
  14. m_yard(x)  = x/.9144
  15. km_mile(x) = x/1.6093
  16.  
  17. Far_Cel(x) = (x-32)/1.8
  18. Cel_Far(x) = x*1.8+32
  19.  
  20. inch_feet(x) = x/12
  21. feet_inch(x) = x*12
  22. yard_feet(x) = x*3
  23. feet_yard(x) = x/3
  24. mile_feet(x) = x*5280
  25. feet_mile(x) = x/5280
  26. mile_yard(x) = x*1760
  27. yard_mile(x) = x/1760